FrameTree

data class FrameTree(frame: Frame, childFrames: List<FrameTree>?)

Information about the Frame hierarchy.

Constructors

FrameTree
Link copied to clipboard
fun FrameTree(frame: Frame, childFrames: List<FrameTree>? = null)

Properties

childFrames
Link copied to clipboard
val childFrames: List<FrameTree>? = null
Child frames.
frame
Link copied to clipboard
val frame: Frame
Frame information for this tree item.

Sources

jvm source
Link copied to clipboard